summaryrefslogtreecommitdiffstats
path: root/lib/expat/CMakeLists.txt
blob: a23f166091933421454eba7d5b8f215f2e9ccb5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

cmake_minimum_required (VERSION 2.6)
project (expat)

file(GLOB SOURCE
    "*.c"
    "*.h"
)

# Set files to go to a "Sources" folder in MSVC project files:
if (MSVC)
	source_group("Sources" FILES ${SOURCE})
endif()

add_library(expat ${SOURCE})